home *** CD-ROM | disk | FTP | other *** search
Text File | 1991-01-10 | 271 b | 17 lines | [TEXT/MPS ] |
- void foo(int x,
- int y)
- {
- if (x > y)
- return true;
- else
- // Here comes the problem, it doesn't matter what kind of compound statement
- // I put here, as long as it has curly braces. This comment has not affect.
-
- for (i = 0; i < x; i++)
- {
- printf(i);
- }
- }
-
-
-